/* Grundlegendes Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Hintergrund und Schrift */
body {
    background-color: #f4f4f4;
    color: #131921;
}

/* Header */
header {
    background-color: #131921;
    color: #ffbc20;
    padding: 20px;
    text-align: center;
}

header img {
    width: 50px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

header h1 {
    display: inline-block;
    font-size: 2rem;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

/* Inhaltsverzeichnis */
.toc {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.toc h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin: 10px 0;
}

.toc a {
    text-decoration: none;
    color: #007bff;
}

.toc a:hover {
    text-decoration: underline;
}

.toc label {
    font-weight: bold;
}

/* Section */
.section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-content {
    font-size: 1rem;
}

/* Glossar */
.glossary dt {
    font-weight: bold;
    margin-top: 10px;
}

.glossary dd {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Dropdown für die Übersicht */
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + ul {
    display: block;
}

input[type="checkbox"] + ul {
    display: none;
}

input[type="checkbox"] + ul li {
    margin-left: 20px;
}

/* Allgemeine Stil-Anpassungen */
ul {
    margin-top: 10px;
}

ul li {
    margin: 5px 0;
}

ul li a {
    text-decoration: none;
    color: #007bff;
}

ul li a:hover {
    text-decoration: underline;
}